home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / f2c / may_5_92.lha / f2c.VMay_5_1992 / libF77 / z_cos.c < prev    next >
C/C++ Source or Header  |  1992-05-07  |  163b  |  11 lines

  1. #include "f2c.h"
  2.  
  3. VOID z_cos(r, z)
  4. doublecomplex *r, *z;
  5. {
  6. double sin(), cos(), sinh(), cosh();
  7.  
  8. r->r = cos(z->r) * cosh(z->i);
  9. r->i = - sin(z->r) * sinh(z->i);
  10. }
  11.